XHTML beyond recognition so use a better browser to save the
pages such as Firefox or Mozilla.
- TourExchangeFormat
-
- XML based export format, used by Map&Guide
- "Motorrad-Routenplaner". This software can only export routing
- data. So we don't support writing.
+ TEF
+
+ TEF, internal called "TourExchangeFormat", is a XML based
+ export format, used by Map&Guide "Motorrad-Routenplaner 2005/06".
+ Another posibility to exchange data with this are the .bcr files,
+ which are sopprted by GPSbabel in both directions (see BCR).
+ Via XML this software can only export routing data.
+ So we don't support writing.
+
+ With the option "routevia" you can eliminate calculated route
+ points from tef source file.
+
+ gpsbabel -r -i tef,routevia -f in.xml -o gpx -F out.gpx
PathAway
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.topografix.com/GPX/1/0"
xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/GPX/1/0/gpx.xsd">
-<time>2005-06-29T16:04:54Z</time>
+<time>1970-01-01T00:00:00Z</time>
<bounds minlat="50.271540000" minlon ="11.642810000" maxlat="50.756270000" maxlon="12.671250000" />
<wpt lat="50.362350000" lon="11.903730000">
<name>in Zedtwitz halb rechts halten auf B2 Hofer Strasse</name>
{
if (strcmp(avp[0], "Name") == 0)
{
- route->rte_name = str_utf8_to_cp1252(avp[1]);
+ route->rte_name = xstrdup(avp[1]);
}
else if (strcmp(avp[0], "Software") == 0)
{
- route->rte_desc = str_utf8_to_cp1252(avp[1]);
+ route->rte_desc = xstrdup(avp[1]);
}
avp+=2;
}
{
if (0 == strcmp(avp[0], "PointDescription"))
{
- wpt_tmp->shortname = str_utf8_to_cp1252(avp[1]);
+ wpt_tmp->shortname = xstrdup(avp[1]);
}
if (0 == strcmp(avp[0], "SegDescription"))
{
- wpt_tmp->description = str_utf8_to_cp1252(avp[1]);
+ wpt_tmp->description = xstrdup(avp[1]);
}
if ((0 == strcmp(avp[0], "ViaStation")) && (0 == strcmp(avp[1], "true")))
{
${PNAME} -i geo -f geocaching.loc -o text -F ${TMPDIR}/text.out -o html -F ${TMPDIR}/html.out -o vcard -F ${TMPDIR}/vcard.out #-o palmdoc -F ${TMPDIR}/pd.out
#
-# TourExchangeFormat tef (read only)
+# tef "TourExchangeFormat" read test
#
rm -f ${TMPDIR}/tef_xml*
${PNAME} -r -i tef -f reference/route/tef_xml.sample.xml -o gpx -F ${TMPDIR}/tef_xml.sample.gpx
-grep -v "<time>" reference/route/tef_xml.sample.gpx > ${TMPDIR}/tef_xml.sample.gpx.ref
-grep -v "<time>" ${TMPDIR}/tef_xml.sample.gpx > ${TMPDIR}/tef_xml.sample.gpx.new
-compare ${TMPDIR}/tef_xml.sample.gpx.ref ${TMPDIR}/tef_xml.sample.gpx.new
+compare reference/route/tef_xml.sample.gpx ${TMPDIR}/tef_xml.sample.gpx
#
# PathAway Palm Database .pdb tests